home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / lisp / nmkfile < prev    next >
Text File  |  1993-12-09  |  1KB  |  43 lines

  1. #
  2. #  Hacked up Nmake makefile for GNU Emacs
  3. #
  4. #   Geoff Voelker (voelker@cs.washington.edu)    11-20-93
  5. #
  6. #  This file is part of GNU Emacs.
  7. #  
  8. #  GNU Emacs is free software; you can redistribute it and/or modify
  9. #  it under the terms of the GNU General Public License as published by
  10. #  the Free Software Foundation; either version 2, or (at your option)
  11. #  any later version.
  12. #  
  13. #  GNU Emacs is distributed in the hope that it will be useful,
  14. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. #  GNU General Public License for more details.
  17. #  
  18. #  You should have received a copy of the GNU General Public License
  19. #  along with GNU Emacs; see the file COPYING.  If not, write to
  20. #  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21. #
  22.  
  23. all:
  24.  
  25. #
  26. # Assuming INSTALL_DIR is defined, copy the elisp files to it
  27. #
  28. CP           = xcopy /frei
  29. install:;    - mkdir $(INSTALL_DIR)\lisp
  30.         del /q .\same-dir.tst
  31.         del /q $(INSTALL_DIR)\lisp\same-dir.tst
  32.         echo SameDirTest > .\same-dir.tst
  33.         if not exist $(INSTALL_DIR)\lisp\same-dir.tst $(CP) . $(INSTALL_DIR)\lisp
  34.         del /q .\same-dir.tst
  35.         
  36.  
  37. #
  38. # Maintenance
  39. clean:;        del /q *~
  40.         delnode /q deleted
  41.  
  42.